home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.txt / 000004_fdc@panix.com_Thu Sep 28 08:53:32 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: reader1.panix.com!panix!not-for-mail
  2. From: Frank Da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Kermit - internet - kermit - com port connection.
  5. Date: Thu, 28 Sep 2006 12:53:21 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 43
  8. Message-ID: <slrnehnhe2.iia.fdc@panix1.panix.com>
  9. References: <Pine.LNX.4.64.0609270635070.15448@xenau.zenez.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix1.panix.com
  12. X-Trace: reader1.panix.com 1159448001 16686 166.84.1.1 (28 Sep 2006 12:53:21 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Thu, 28 Sep 2006 12:53:21 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15575
  17.  
  18. On 2006-09-27, Boyd Lynn Gerber <gerberb@zenez.com> wrote:
  19. : It has been a long time since I have had to do this and I am not doing
  20. : something right.
  21. :
  22. : I have a linux system that uses kermit over the internet to connect to an
  23. : ms kermit in server mode.  What I need to do is on the ms kermit get
  24. : files and send them to the main kermit system.
  25. :
  26. : When on the MS kermit I do the following.
  27. :
  28. : set port 1
  29. : set baud 9600
  30. : remote login Account
  31. : get data file.name
  32. : ...
  33. : exit
  34. :
  35. : What I need to do is from the internet connect to the ms kermit and run
  36. : the above providing the various file names.  I have 100 different files to
  37. : retrieve on 30 different systems.  I want one main system to run a script
  38. : and connect to each of the various systems and get/run various commands to
  39. : each of the cash registers that I connect to using the above.  Ideally I
  40. : would like to be able to see/detect a change in the files being accessed
  41. : from the MS Kermit.
  42. :
  43. : I have the MS Kermit in Server mode but it does not want to do the
  44. : commands I am trying to send it.  What does work is get files from the
  45. : local drive on the MS kermit machine.  I am really sure I have used a
  46. : kermit to kermit connection to do this.  Could any one assist with some
  47. : ideas.  Usually I script this, but I seem to be missing something.
  48. :
  49. Let's see if I understand.  You have a DOS PC that is on a network.
  50. You want to make a connection to it over the network from a Linux system
  51. and then you want the DOS system to make a serial-port connection to
  52. a third system?  I'm not sure I'm seeing the picture.  MS-DOS Kermit can
  53. receive incoming connections over the Internet, e.g. on TCP port 3000:
  54.  
  55.   set port tcp/ip * 3000
  56.  
  57. or it can make connections, but it can't do both at once; that is, it
  58. can't act as a relay.  Is that what you're looking for?
  59.  
  60. - Frank